home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / filter1.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  2.5 KB  |  100 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //----------------------------------------------------------------------------
  6. #ifndef Filter1HPP
  7. #define Filter1HPP
  8. //----------------------------------------------------------------------------
  9. #ifndef ButtonsHPP
  10. #include <Buttons.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Controls.hpp>
  13. #include <Classes.hpp>
  14. #endif
  15.  
  16. #ifndef StdCtrlsHPP
  17. #include <StdCtrls.hpp>
  18. #endif
  19.  
  20. #ifndef DialogsHPP
  21. #include <Dialogs.hpp>
  22. #endif
  23.  
  24. #ifndef FormsHPP
  25. #include <Forms.hpp>
  26. #endif
  27.  
  28. #ifndef ControlsHPP
  29. #include <Controls.hpp>
  30. #endif
  31.  
  32. #ifndef GraphicsHPP
  33. #include <Graphics.hpp>
  34. #endif
  35.  
  36. #ifndef ClassesHPP
  37. #include <Classes.hpp>
  38. #endif
  39.  
  40. #ifndef SysUtilsHPP
  41. #include <SysUtils.hpp>
  42. #endif
  43.  
  44. #ifndef MessagesHPP
  45. #include <Messages.hpp>
  46. #endif
  47.  
  48. #ifndef WindowsHPP
  49. #include <Windows.hpp>
  50. #endif
  51.  
  52. #ifndef SystemHPP
  53. #include <System.hpp>
  54. #endif
  55.  
  56. #ifndef ComCtrlsHPP
  57. #include <ComCtrls.hpp>
  58. #endif
  59.  
  60. //-- type declarations -------------------------------------------------------
  61. class __declspec(delphiclass) TfmFilterFrm;
  62. class TfmFilterFrm : public TForm
  63. {
  64.     typedef TfmFilterFrm ThisClass;
  65.     typedef TForm inherited;
  66.     
  67. __published:
  68.     TLabel *Label1;
  69.     TLabel *Label2;
  70.     TListBox *ListBox1;
  71.     TListBox *ListBox2;
  72.     TLabel *Label3;
  73.     TGroupBox *GroupBox1;
  74.         TCheckBox *cbCaseSensitive;
  75.     TCheckBox *cbPartialCompare;
  76.     TComboBox *ComboBox1;
  77.     TLabel *Label4;
  78.     TButton *BtnApplyFilter;
  79.     TButton *BtnClear;
  80.     TButton *BtnClose;
  81.     TMemo *Memo1;
  82.     void __fastcall AddFieldName(TObject *Sender);
  83.     void __fastcall ListBox2DblClick(TObject *Sender);
  84.     void __fastcall ApplyFilter(TObject *Sender);
  85.     void __fastcall FormCreate(TObject *Sender);
  86.     void __fastcall Memo1Change(TObject *Sender);
  87.     void __fastcall cbCaseSensitiveClick(TObject *Sender);
  88.     void __fastcall cbPartialCompareClick(TObject *Sender);
  89.     void __fastcall SBtnClearClick(TObject *Sender);
  90.     void __fastcall ComboBox1Change(TObject *Sender);
  91.     void __fastcall SBtnCloseClick(TObject *Sender);
  92. public:
  93.     __fastcall virtual TfmFilterFrm(TComponent*);
  94. };
  95.  
  96. //-- var, const, procedure ---------------------------------------------------
  97. extern TfmFilterFrm *fmFilterFrm;
  98. //-- end unit ----------------------------------------------------------------
  99. #endif    // Filter1
  100.